home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earcd / utils / selector / shortway.sel < prev    next >
Text File  |  1998-02-03  |  1KB  |  42 lines

  1.  pattern 0 /patterns/4.CoffeeBean    ;Sets the background pattern image
  2.  pattern 15 /patterns/4.krull    ;sets another pattern (for the button background)
  3.  
  4.  Screen Jump        ;The panel will popup on ALL screens
  5.  
  6.  Popup rmb lmb
  7.      ;The panel will popup when both mouse buttons are pressed
  8.      ;(left+right). If you have a 3-button mouse, use "POPUP MMB"
  9.      ;instead, for the middle button.
  10.  
  11.  X atPointer
  12.  Y atPointer        ;The panel will popup at the mouse pointer
  13.  
  14.  Font Courier 15    ;Sets the font to use
  15.      
  16.  Markbutton ants    ;Marks the button under the mouse pointer
  17.  
  18.  Border OFF        ;Turns the windows borders off
  19.  
  20.  Title OFF        ;Turns the windows title off
  21.      
  22.  Gap 1            ;Sets the distance between buttons
  23.  
  24.  
  25.  Color dark 15        ;Sets forgound to black and background to the pattern just loaded
  26.  
  27.  Button Shell        exec 'newshell con:20/156/640/178'    ;Button for starting a shell
  28.  
  29.  button Workbench    ScreenRun Workbench        ;Button for jumping to Workbench
  30.  
  31.  button Octamed        ScreenRun OCTAMED "work:Soundstudio/octamed" closepopup
  32.      ;Button for starting Octamed, or just jump to octameds screen
  33.      ;if it's allready open.
  34.  
  35.  button Lexikon        exec 'wbrun "Work:ORD/Lexikon/Lexikon"' closepopup
  36.      ;Start a program as if it had been doubleclicked.
  37.  
  38.  Color light 0        ;Sets forgound to white and background to the background pattern
  39.  
  40.  button Program        run 'selector program' closepopup        ;Show a submenu
  41.      
  42.